/* size of the bloom filter */
int size = in.readInt();
/* skip the serialized bloom filter */
in.skipBytes(size);
}
/**
/* size of the bloom filter */
int size = in.readInt();
/* skip the serialized bloom filter */
if (in.skipBytes(size) != size)
throw new EOFException();
}
/**